home *** CD-ROM | disk | FTP | other *** search
/ Cracking 2 / Cracking II..iso / Kompresni & kodovaci programy / ucl-0.91 / acconfig / m4 / libtool.m4.orig < prev    next >
Text File  |  2000-01-30  |  15KB  |  434 lines

  1. ## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*-
  2. ## Copyright (C) 1996-1999 Free Software Foundation, Inc.
  3. ## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
  4. ##
  5. ## This program is free software; you can redistribute it and/or modify
  6. ## it under the terms of the GNU General Public License as published by
  7. ## the Free Software Foundation; either version 2 of the License, or
  8. ## (at your option) any later version.
  9. ##
  10. ## This program is distributed in the hope that it will be useful, but
  11. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. ## General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with this program; if not, write to the Free Software
  17. ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. ##
  19. ## As a special exception to the GNU General Public License, if you
  20. ## distribute this file as part of a program that contains a
  21. ## configuration script generated by Autoconf, you may include it under
  22. ## the same distribution terms that you use for the rest of that program.
  23.  
  24. # serial 40 AC_PROG_LIBTOOL
  25. AC_DEFUN(AC_PROG_LIBTOOL,
  26. [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
  27.  
  28. # Save cache, so that ltconfig can load it
  29. AC_CACHE_SAVE
  30.  
  31. # Actually configure libtool.  ac_aux_dir is where install-sh is found.
  32. CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
  33. LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \
  34. LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" \
  35. DLLTOOL="$DLLTOOL" AS="$AS" OBJDUMP="$OBJDUMP" \
  36. ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
  37. $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $lt_target \
  38. || AC_MSG_ERROR([libtool configure failed])
  39.  
  40. # Reload cache, that may have been modified by ltconfig
  41. AC_CACHE_LOAD
  42.  
  43. # This can be used to rebuild libtool when needed
  44. LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh"
  45.  
  46. # Always use our own libtool.
  47. LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  48. AC_SUBST(LIBTOOL)dnl
  49.  
  50. # Redirect the config.log output again, so that the ltconfig log is not
  51. # clobbered by the next message.
  52. exec 5>>./config.log
  53. ])
  54.  
  55. AC_DEFUN(AC_LIBTOOL_SETUP,
  56. [AC_PREREQ(2.13)dnl
  57. AC_REQUIRE([AC_ENABLE_SHARED])dnl
  58. AC_REQUIRE([AC_ENABLE_STATIC])dnl
  59. AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
  60. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  61. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  62. AC_REQUIRE([AC_PROG_RANLIB])dnl
  63. AC_REQUIRE([AC_PROG_CC])dnl
  64. AC_REQUIRE([AC_PROG_LD])dnl
  65. AC_REQUIRE([AC_PROG_NM])dnl
  66. AC_REQUIRE([AC_PROG_LN_S])dnl
  67. dnl
  68.  
  69. case "$target" in
  70. NONE) lt_target="$host" ;;
  71. *) lt_target="$target" ;;
  72. esac
  73.  
  74. # Check for any special flags to pass to ltconfig.
  75. libtool_flags="--cache-file=$cache_file"
  76. test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
  77. test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
  78. test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
  79. test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc"
  80. test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
  81. ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN],
  82. [libtool_flags="$libtool_flags --enable-dlopen"])
  83. ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
  84. [libtool_flags="$libtool_flags --enable-win32-dll"])
  85. AC_ARG_ENABLE(libtool-lock,
  86.   [  --disable-libtool-lock  avoid locking (might break parallel builds)])
  87. test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock"
  88. test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
  89.  
  90. # Some flags need to be propagated to the compiler or linker for good
  91. # libtool support.
  92. case "$lt_target" in
  93. *-*-irix6*)
  94.   # Find out which ABI we are using.
  95.   echo '[#]line __oline__ "configure"' > conftest.$ac_ext
  96.   if AC_TRY_EVAL(ac_compile); then
  97.     case "`/usr/bin/file conftest.o`" in
  98.     *32-bit*)
  99.       LD="${LD-ld} -32"
  100.       ;;
  101.     *N32*)
  102.       LD="${LD-ld} -n32"
  103.       ;;
  104.     *64-bit*)
  105.       LD="${LD-ld} -64"
  106.       ;;
  107.     esac
  108.   fi
  109.   rm -rf conftest*
  110.   ;;
  111.  
  112. *-*-sco3.2v5*)
  113.   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
  114.   SAVE_CFLAGS="$CFLAGS"
  115.   CFLAGS="$CFLAGS -belf"
  116.   AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
  117.     [AC_LANG_SAVE
  118.      AC_LANG_C
  119.      AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
  120.      AC_LANG_RESTORE])
  121.   if test x"$lt_cv_cc_needs_belf" != x"yes"; then
  122.     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
  123.     CFLAGS="$SAVE_CFLAGS"
  124.   fi
  125.   ;;
  126.  
  127. ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
  128. [*-*-cygwin* | *-*-mingw*)
  129.   AC_CHECK_TOOL(DLLTOOL, dlltool, false)
  130.   AC_CHECK_TOOL(AS, as, false)
  131.   AC_CHECK_TOOL(OBJDUMP, objdump, false)
  132.   ;;
  133. ])
  134. esac
  135. ])
  136.  
  137. # AC_LIBTOOL_DLOPEN - enable checks for dlopen support
  138. AC_DEFUN(AC_LIBTOOL_DLOPEN, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])])
  139.  
  140. # AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's
  141. AC_DEFUN(AC_LIBTOOL_WIN32_DLL, [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])])
  142.  
  143. # AC_ENABLE_SHARED - implement the --enable-shared flag
  144. # Usage: AC_ENABLE_SHARED[(DEFAULT)]
  145. #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
  146. #   `yes'.
  147. AC_DEFUN(AC_ENABLE_SHARED, [dnl
  148. define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
  149. AC_ARG_ENABLE(shared,
  150. changequote(<<, >>)dnl
  151. <<  --enable-shared[=PKGS]  build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT],
  152. changequote([, ])dnl
  153. [p=${PACKAGE-default}
  154. case "$enableval" in
  155. yes) enable_shared=yes ;;
  156. no) enable_shared=no ;;
  157. *)
  158.   enable_shared=no
  159.   # Look at the argument we got.  We use all the common list separators.
  160.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
  161.   for pkg in $enableval; do
  162.     if test "X$pkg" = "X$p"; then
  163.       enable_shared=yes
  164.     fi
  165.   done
  166.   IFS="$ac_save_ifs"
  167.   ;;
  168. esac],
  169. enable_shared=AC_ENABLE_SHARED_DEFAULT)dnl
  170. ])
  171.  
  172. # AC_DISABLE_SHARED - set the default shared flag to --disable-shared
  173. AC_DEFUN(AC_DISABLE_SHARED, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  174. AC_ENABLE_SHARED(no)])
  175.  
  176. # AC_ENABLE_STATIC - implement the --enable-static flag
  177. # Usage: AC_ENABLE_STATIC[(DEFAULT)]
  178. #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
  179. #   `yes'.
  180. AC_DEFUN(AC_ENABLE_STATIC, [dnl
  181. define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
  182. AC_ARG_ENABLE(static,
  183. changequote(<<, >>)dnl
  184. <<  --enable-static[=PKGS]  build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT],
  185. changequote([, ])dnl
  186. [p=${PACKAGE-default}
  187. case "$enableval" in
  188. yes) enable_static=yes ;;
  189. no) enable_static=no ;;
  190. *)
  191.   enable_static=no
  192.   # Look at the argument we got.  We use all the common list separators.
  193.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
  194.   for pkg in $enableval; do
  195.     if test "X$pkg" = "X$p"; then
  196.       enable_static=yes
  197.     fi
  198.   done
  199.   IFS="$ac_save_ifs"
  200.   ;;
  201. esac],
  202. enable_static=AC_ENABLE_STATIC_DEFAULT)dnl
  203. ])
  204.  
  205. # AC_DISABLE_STATIC - set the default static flag to --disable-static
  206. AC_DEFUN(AC_DISABLE_STATIC, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  207. AC_ENABLE_STATIC(no)])
  208.  
  209.  
  210. # AC_ENABLE_FAST_INSTALL - implement the --enable-fast-install flag
  211. # Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)]
  212. #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
  213. #   `yes'.
  214. AC_DEFUN(AC_ENABLE_FAST_INSTALL, [dnl
  215. define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
  216. AC_ARG_ENABLE(fast-install,
  217. changequote(<<, >>)dnl
  218. <<  --enable-fast-install[=PKGS]  optimize for fast installation [default=>>AC_ENABLE_FAST_INSTALL_DEFAULT],
  219. changequote([, ])dnl
  220. [p=${PACKAGE-default}
  221. case "$enableval" in
  222. yes) enable_fast_install=yes ;;
  223. no) enable_fast_install=no ;;
  224. *)
  225.   enable_fast_install=no
  226.   # Look at the argument we got.  We use all the common list separators.
  227.   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
  228.   for pkg in $enableval; do
  229.     if test "X$pkg" = "X$p"; then
  230.       enable_fast_install=yes
  231.     fi
  232.   done
  233.   IFS="$ac_save_ifs"
  234.   ;;
  235. esac],
  236. enable_fast_install=AC_ENABLE_FAST_INSTALL_DEFAULT)dnl
  237. ])
  238.  
  239. # AC_ENABLE_FAST_INSTALL - set the default to --disable-fast-install
  240. AC_DEFUN(AC_DISABLE_FAST_INSTALL, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  241. AC_ENABLE_FAST_INSTALL(no)])
  242.  
  243. # AC_PROG_LD - find the path to the GNU or non-GNU linker
  244. AC_DEFUN(AC_PROG_LD,
  245. [A